GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 36194c...3c18d9 )
by Benjamin
01:42
created

grid.js ➔ ???   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
cc 1
c 1
b 0
f 1
nc 1
dl 0
loc 7
rs 9.4285
nop 1
1
import { fromJS } from 'immutable';
2
3
import {
4
    SET_COLUMNS,
5
    RESIZE_COLUMNS,
6
    SET_SORT_DIRECTION,
7
    HIDE_HEADER
8
} from './../../constants/ActionTypes';
9
10
import
11
    handleActions
12
from './../../util/handleActions';
13
14
import { generateLastUpdate } from './../../util/lastUpdate';
15
16
import {
17
    hideHeader,
18
    setColumns,
19
    setSortDirection,
20
    resizeColumns
21
} from './../actionHelpers/grid';
22
23
const initialState = fromJS({ lastUpdate: generateLastUpdate() });
24
25
export default handleActions({
26
    [SET_COLUMNS]: setColumns,
27
    [RESIZE_COLUMNS]: resizeColumns,
28
    [SET_SORT_DIRECTION]: setSortDirection,
29
    [HIDE_HEADER]: hideHeader
30
}, initialState);
31